DataSource for Entity Framework in WPF
C1.Data Namespace / ClientView<T> Class / Loaded Event

In This Topic
    Loaded Event
    In This Topic
    Occurs when the client view has finished loading succesfully, and also when an exception has been thrown during loading.
    Syntax
    'Declaration
     
    Public Event Loaded As EventHandler(Of ClientViewLoadedEventArgs)
    Event Data

    The event handler receives an argument of type ClientViewLoadedEventArgs containing data related to this event. The following ClientViewLoadedEventArgs properties provide information specific to this event.

    PropertyDescription
    Gets the loading error if the loading failed.  
    Gets a value indicating whether the loading has failed. If true, inspect the Error property for details.  
    Gets a value indicating whether the loading error has been marked as handled by calling MarkErrorAsHandled.  
    Gets all entities loaded by a client view.  
    Gets the total number of rows for the original query without any paging applied to it.  
    See Also